Algorithm
Problem Name: Sql -
In this HackerRank Functions in SQL problem solution,
Query the total population of all cities in CITY where District is California.
Input Format
The CITY table is described as follows:
Code Examples
#1 Code Example with SQL
Code -
SQL
SELECT SUM(POPULATION) FROM CITY
WHERE DISTRICT = 'California';
Copy The Code &
Try With Live Editor